本文整理汇总了Python中temboo.core.choreography.InputSet类的典型用法代码示例。如果您正苦于以下问题:Python InputSet类的具体用法?Python InputSet怎么用?Python InputSet使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了InputSet类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: set_ShowSynopsis
def set_ShowSynopsis(self, value):
"""
Set the value of the ShowSynopsis input for this Choreo. ((optional, boolean) Set to 1 to show the synopsis for each project listing)
"""
InputSet._set_input(self, 'ShowSynopsis', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:SpecialNeeds.py
示例2: set_Page
def set_Page(self, value):
"""
Set the value of the Page input for this Choreo. ((optional, integer) Specifies what page of results to show. Used in conjunction with Number parameter. A number of 20 and a Page of 6 will show results 100-120.)
"""
InputSet._set_input(self, 'Page', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSecondDegreeRelationships.py
示例3: set_AccessToken
def set_AccessToken(self, value):
"""
Set the value of the AccessToken input for this Choreo. ((required, string) The Access Token retrieved after the final step in the OAuth2 process.)
"""
InputSet._set_input(self, 'AccessToken', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:DeleteEntry.py
示例4: set_Category2
def set_Category2(self, value):
"""
Set the value of the Category2 input for this Choreo. ((optional, string) Comma delimited list of Category IDs. Restricts the categories of Relationships that the given Entity and all second degree Entities returned should be connected through.)
"""
InputSet._set_input(self, 'Category2', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSecondDegreeRelationships.py
示例5: set_Number
def set_Number(self, value):
"""
Set the value of the Number input for this Choreo. ((optional, integer) Specifies what number of results to show. Used in conjunction with Page parameter, a Number of 20 and a Page of 6 will show results 100-120. Defaults to 20.)
"""
InputSet._set_input(self, 'Number', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSecondDegreeRelationships.py
示例6: set_ResponseFormat
def set_ResponseFormat(self, value):
"""
Set the value of the ResponseFormat input for this Choreo. ((optional, string) The format that the response should be in. Valid values are: json (the default) and xml.)
"""
InputSet._set_input(self, 'ResponseFormat', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSalesPercentiles.py
示例7: set_Endpoint
def set_Endpoint(self, value):
InputSet._set_input(self, 'Endpoint', value)
开发者ID:miriammelnick,项目名称:dont-get-mugged,代码行数:2,代码来源:DeleteSearchResultStyle.py
示例8: set_Password
def set_Password(self, value):
InputSet._set_input(self, 'Password', value)
开发者ID:miriammelnick,项目名称:dont-get-mugged,代码行数:2,代码来源:DeleteSearchResultStyle.py
示例9: set_ClientID
def set_ClientID(self, value):
InputSet._set_input(self, 'ClientID', value)
开发者ID:miriammelnick,项目名称:dont-get-mugged,代码行数:2,代码来源:DeleteSearchResultStyle.py
示例10: set_Email
def set_Email(self, value):
InputSet._set_input(self, 'Email', value)
开发者ID:miriammelnick,项目名称:dont-get-mugged,代码行数:2,代码来源:DeleteSearchResultStyle.py
示例11: set_User
def set_User(self, value):
"""
Set the value of the User input for this Choreo. ((required, string) The GitHub username.)
"""
InputSet._set_input(self, 'User', value)
开发者ID:dattasaurabh82,项目名称:Final_thesis,代码行数:5,代码来源:GetAllReferences.py
示例12: set_Repo
def set_Repo(self, value):
"""
Set the value of the Repo input for this Choreo. ((required, string) The name of the repo associated with the references to retrieve.)
"""
InputSet._set_input(self, 'Repo', value)
开发者ID:dattasaurabh82,项目名称:Final_thesis,代码行数:5,代码来源:GetAllReferences.py
示例13: set_AccessToken
def set_AccessToken(self, value):
"""
Set the value of the AccessToken input for this Choreo. ((conditional, string) The Access Token retrieved during the OAuth process. Required when accessing a protected resource.)
"""
InputSet._set_input(self, 'AccessToken', value)
开发者ID:dattasaurabh82,项目名称:Final_thesis,代码行数:5,代码来源:GetAllReferences.py
示例14: set_GeoSummaryLevel
def set_GeoSummaryLevel(self, value):
"""
Set the value of the GeoSummaryLevel input for this Choreo. ((required, string) The geographic unit for grouping the results (borough, neighborhood, or zip))
"""
InputSet._set_input(self, 'GeoSummaryLevel', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSalesPercentiles.py
示例15: set_SearchResultStyleName
def set_SearchResultStyleName(self, value):
InputSet._set_input(self, 'SearchResultStyleName', value)
开发者ID:miriammelnick,项目名称:dont-get-mugged,代码行数:2,代码来源:DeleteSearchResultStyle.py
示例16: set_Percentile
def set_Percentile(self, value):
"""
Set the value of the Percentile input for this Choreo. ((required, integer) Specify the percentile for sales prices you want to retrieve (i.e 50))
"""
InputSet._set_input(self, 'Percentile', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSalesPercentiles.py
示例17: set_SynServiceID
def set_SynServiceID(self, value):
InputSet._set_input(self, 'SynServiceID', value)
开发者ID:miriammelnick,项目名称:dont-get-mugged,代码行数:2,代码来源:DeleteSearchResultStyle.py
示例18: set_APIKey
def set_APIKey(self, value):
"""
Set the value of the APIKey input for this Choreo. ((required, string) The API Key provided by NY Times)
"""
InputSet._set_input(self, 'APIKey', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSalesPercentiles.py
示例19: set_APIKey
def set_APIKey(self, value):
"""
Set the value of the APIKey input for this Choreo. ((required, string) The API Key obtained from LittleSis.org.)
"""
InputSet._set_input(self, 'APIKey', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSecondDegreeRelationships.py
示例20: set_Bedrooms
def set_Bedrooms(self, value):
"""
Set the value of the Bedrooms input for this Choreo. ((optional, integer) Limits the results by number of bedrooms to search for. Defaults to 1.)
"""
InputSet._set_input(self, 'Bedrooms', value)
开发者ID:cwarny,项目名称:entity-resolution,代码行数:5,代码来源:GetSalesPercentiles.py
注:本文中的temboo.core.choreography.InputSet类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论