Module Values.UpdateApplicationInputSource

Update the application request.

Sourcetype nonrec t = {
  1. author : string option;
    (*

    The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";

    *)
  2. description : string option;
    (*

    The description of the application.Minimum length=1. Maximum length=256

    *)
  3. homePageUrl : string option;
    (*

    A URL with more information about the application, for example the location of your GitHub repository for the application.

    *)
  4. labels : string list option;
    (*

    Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";

    *)
  5. readmeBody : string option;
    (*

    A text readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB

    *)
  6. readmeUrl : string option;
    (*

    A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB

    *)
}
Sourceval make : ?author:??? -> ?description:??? -> ?homePageUrl:??? -> ?labels:??? -> ?readmeBody:??? -> ?readmeUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t